From 7255d25f6834a208c0ed44636356cc260f6ab6ba Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 27 Sep 2023 17:38:23 +0200 Subject: refactor(components): rewrite Heading component * remove `alignment` and `withMargin` props (consumer should handle that) * move styles to Sass placeholders to avoid repeats with headings coming from WordPress * refactor some other components that depend on Heading to avoid ESlint errors --- src/pages/projets/[slug].tsx | 63 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) (limited to 'src/pages/projets/[slug].tsx') diff --git a/src/pages/projets/[slug].tsx b/src/pages/projets/[slug].tsx index 9981868..afcf060 100644 --- a/src/pages/projets/[slug].tsx +++ b/src/pages/projets/[slug].tsx @@ -5,7 +5,7 @@ import dynamic from 'next/dynamic'; import Head from 'next/head'; import { useRouter } from 'next/router'; import Script from 'next/script'; -import type { ComponentType } from 'react'; +import type { ComponentType, HTMLAttributes } from 'react'; import { useIntl } from 'react-intl'; import { Code, @@ -22,6 +22,7 @@ import { type SocialWebsite, Spinner, type MetaData, + Heading, } from '../../components'; import styles from '../../styles/pages/project.module.scss'; import type { NextPageWithLayout, ProjectPreview, Repos } from '../../types'; @@ -44,9 +45,69 @@ const BorderedImage = (props: ResponsiveImageProps) => ( ); +const H1 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + +const H2 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + +const H3 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + +const H4 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + +const H5 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + +const H6 = ({ + children = '', + ...props +}: HTMLAttributes) => ( + + {children} + +); + const components: MDXComponents = { Code, Gallery, + h1: H1, + h2: H2, + h3: H3, + h4: H4, + h5: H5, + h6: H6, Image: BorderedImage, Link, }; -- cgit v1.2.3